home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue67 / Threads / HangMan.dpr < prev    next >
Encoding:
Text File  |  2000-12-29  |  555 b   |  21 lines

  1. program HangMan;
  2.  
  3. uses
  4.   Forms,
  5.   MainForm in 'Private\MainForm.pas' {Form1},
  6.   CriticalSection in 'Private\CriticalSection.pas',
  7.   MultiReadExclusiveWrite in 'Private\MultiReadExclusiveWrite.pas',
  8.   BasicThread in 'Private\BasicThread.pas',
  9.   OpponentThread in 'Private\OpponentThread.pas',
  10.   HiddenWordThread in 'Private\HiddenWordThread.pas',
  11.   IntegerList in 'Private\IntegerList.pas';
  12.  
  13. {$R *.RES}
  14.  
  15. begin
  16.   Application.Initialize;
  17.   Application.Title := 'Hang Man';
  18.   Application.CreateForm(TForm1, Form1);
  19.   Application.Run;
  20. end.
  21.